home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Prog / B-C / Bison-TC.cpt / system.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-30  |  313 b   |  19 lines  |  [TEXT/KAHL]

  1. #ifdef MSDOS
  2. #include <stdlib.h>
  3. #include <io.h>
  4. #endif /* MSDOS */
  5.  
  6. #ifdef USG
  7. #include <string.h>
  8. #else /* not USG */
  9. #ifdef MSDOS
  10. #include <string.h>
  11. #else /* not USG or MSDOS */
  12. #ifdef THINK_C
  13. #include <string.h>
  14. #else
  15. #include <strings.h>
  16. #endif /* not THINK_C */
  17. #endif /* not MSDOS */
  18. #endif /* not USG */
  19.